math/big.nat.bytes (method)

7 uses

	math/big (current package)
		floatmarsh.go#L55: 		x.mant[len(x.mant)-n:].bytes(buf[10:]) // cut off unused trailing words
		int.go#L528: 	return buf[x.abs.bytes(buf):]
		int.go#L540: 	x.abs.bytes(buf)
		intmarsh.go#L23: 	i := x.abs.bytes(buf) - 1            // i >= 0
		nat.go#L1307: func (z nat) bytes(buf []byte) (i int) {
		ratmarsh.go#L25: 	i := x.b.abs.bytes(buf)
		ratmarsh.go#L26: 	j := x.a.abs.bytes(buf[:i])